-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for tar #67
Conversation
Thanks for this! If you need to pull in another library to compress files, I'd rather just put them in the repo. I'm not against that, but when you can use the stdlib or already-available open source package we use, go ahead and create the files. The tests also run on Windows, so os.exec is going to be a problem. Again, just create some test files and include them. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eh, I'm actually okay with this. Thanks again!
Will leave it open for a day in case you want to make some changes.
Thank you for the invite to collaborate - I am humbled. Let me know @davidnewhall if it is OK to merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK to merge. Thanks! (please squash and merge)
there is no library for compressing using the traditional Z format, so I added a test file for this
added a new dependency for writing bzip2
there was also a typo in the error message in tar.go that I fixed